home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-06-23 | 245 b | 18 lines | [TEXT/MPCC] |
- // DemoDoc.h
-
- #include <LSingleDoc.h>
-
- class NetPoint;
-
- class DemoDoc :
- public LSingleDoc
- {
- protected:
- NetPoint *fNetPoint;
- public:
- DemoDoc(LCommander *inSuper);
- virtual ~DemoDoc();
-
- void SetNetPoint(NetPoint* inNewPoint);
-
- };